iT邦幫忙

2023 iThome 鐵人賽

DAY 5
0
自我挑戰組

CPE 49題訓練系列 第 5

YKL34.UVA10101 Bangla Numbers

  • 分享至 

  • xImage
  •  
def ban(a):
	if a>=10000000:
		ban(a//10000000)
		print(' kuti',end="")
		a%=10000000
	if a>=100000:
		print(' '+str(a//100000)+' lakh',end="")
		a%=100000
	if a>=1000:
		print(' '+str(a//1000)+' hajar',end="")
		a%=1000
	if a>=100:
		print(' '+str(a//100)+' shata',end="")
		a%=100
	if a>0:
		print(' '+str(a),end="")
c=1
while 1:
	try:
		a=int(input())
		if c<10:
			print('   '+str(c)+'.',end="")
		else:
			print('  '+str(c)+'.',end="")
		c+=1
		if a>0:
			ban(a)
		else:
			print(' 0',end="")
		print()
	except:
		break

上一篇
YKL08.UVA100 The 3n + 1 problem YKL13.UVA10929 You can say 11
下一篇
YKL43.UVA10420 List of Conquests YKL32.UVA10008 What's Cryptanalysis
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言